projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b11531e
)
Windows build fix
author
Lars Ingebrigtsen
<larsi@gnus.org>
Mon, 1 Feb 2016 00:19:42 +0000
(
01:19
+0100)
committer
Lars Ingebrigtsen
<larsi@gnus.org>
Mon, 1 Feb 2016 00:19:42 +0000
(
01:19
+0100)
* process.c (Fmake_network_process): Build fix for systems
without local sockets.
src/process.c
patch
|
blob
|
history
diff --git
a/src/process.c
b/src/process.c
index b91e1c97a97848f38f40f971014d22b81ec4b926..6b76559f309181b2e705da273cf5810804e19718 100644
(file)
--- a/
src/process.c
+++ b/
src/process.c
@@
-3587,7
+3587,9
@@
usage: (make-network-process &rest ARGS) */)
{
/* The "connection" function gets it bind info from the address we're
given, so use this dummy address if nothing is specified. */
+#ifdef HAVE_LOCAL_SOCKETS
if (family != AF_LOCAL)
+#endif
host = build_string ("127.0.0.1");
}
else